-
Notifications
You must be signed in to change notification settings - Fork 19
Add authorize flag to peers info #85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Module MonitorChanges detected in module.yml Firmware Blob Changes
This comment was automatically generated. |
| /** If true, skip local and IANA Unicast reserved MACs **/ | ||
| unsigned char skip_local_admin_macs; | ||
| /** If true, indicates that it's a P2P scan **/ | ||
| unsigned char p2p_scan; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can't we use no_cck flag for this as well? @karun2796
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In LMAC based on this no_cck they are setting some parameters like protection_type, preamble_type , rate_retries, rate_flags etc.
Will this no_cck set by default for p2p scan? If that is the case, We can use this no_cck flag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, we can use the same info to skip 11b IEs + not sending in 11b rates. But anyways this is an optimization.
|
@rado17 please rebase (there is a recent change to enforce DNM) |
Add param to mark a connected peer authorized once the peer is connected. Required in case of AP mode where authorized flag needs to be set for each client. Signed-off-by: Ravi Dondaputi <[email protected]>
Move nrf_wifi_util_get_ra to fmac_utils lib to make it accessible across other files. Signed-off-by: Ravi Dondaputi <[email protected]>
Update firmware binaries and RPU shared header for: 1. Suppressing 11b rates in the P2P probe requests. 2. Fix for race condition while sending keep alive frame. 3. Firmware bug causing broadcast BSSID fields in beacons causing frames to be dropped in Wi-Fi Monitor mode. 4. RPU Version update from 1.2.14.4 to 1.2.14.5. Signed-off-by: Karun Kumar Eagalapati <[email protected]>
Authorize flag is required to block the data traffic until the EAPoL negotiation is concluded.